home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000441_news@columbia.edu_Wed Sep 27 02:13:50 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10578
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 28 Sep 1995 22:49:58 -0400
  3. Received: by apakabar.cc.columbia.edu id AA01805
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 28 Sep 1995 22:49:57 -0400
  5. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!news.mathworks.com!news.ultranet.com!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Escape-Code Problem
  9. Message-Id: <1995Sep27.081350.62112@cc.usu.edu>
  10. Date: 27 Sep 95 08:13:50 MDT
  11. References: <4497a5$6sv@n.ruf.uni-freiburg.de>
  12. Organization: Utah State University
  13. Lines: 24
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <4497a5$6sv@n.ruf.uni-freiburg.de>, gartmann@immunbio.mpg.de (Christoph Gartmann) writes:
  17. > Hello,
  18. > we use a software remotely via Kermit & TCP-IP. This software recognizes
  19. > the Escape-key (and character) and associates the function "one level back"
  20. > to it. On the other hand the terminal emulation (Kermit VT220) uses escape
  21. > sequences for cursors keys (e.g. <ESC>[B for cursord-down). Now this software
  22. > (yes, it does support a VT220) has to distinguish between a single escape
  23. > and an escape that is part of an escape sequence. Obviously this is done via
  24. > the delay between the bytes. And if the line is a bit slow you don't have
  25. > the cursor keys anymore :-( Thus, is there a way to tell Kermit that it will
  26. > send escape sequences in a single packet or something the like? I agree, this
  27. > is not a problem of Kermit but of the remote software (no way to disable the
  28. > escape key or remap it). But perhaps Kermit can offer a way to get around
  29. > this problem?
  30. ----------
  31.     Kermit for which operating system and machine??
  32.     MS-DOS Kermit does group bytes corresponding to single key presses. 
  33. Please do note that TCP/IP Telnet full duplex connections have no concept of 
  34. records and unit delivery; it's a data stream. IP packets hold as much as the
  35. protocol stack wants to send at that time and the time between packets is not
  36. tied to the data. The Emacs-like ESC versus escape sequence timing gimmick
  37. fails on long distance links because timing is not tightly controlled.
  38.         Joe D.